home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / tuningtypes.sql < prev    next >
Text File  |  2000-05-12  |  832b  |  27 lines

  1. /* RCSVER $Id: tuningtypes.sql,v 1.2 1999-02-24 16:20:49-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        tuningtypes.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the tuningtypes table. This table contains 
  9. *        categories to which each tuning parameter is assigned. 
  10. * Changes:
  11. ************************************************************************* */
  12. /* TUNINGTYPES
  13.     1    Bill/Coin
  14.     2    Cashbox
  15.     3    OCU/Display
  16.     4    Security
  17.     5    System
  18.     6    Misc
  19. */
  20. CREATE TABLE tuningtypes
  21. (
  22.     type    NUMBER(38),        /* ID of this type */
  23.     name    VARCHAR2(20),        /* Name of category */
  24.     descr    VARCHAR2(40),        /* Description of category */
  25.     CONSTRAINT pk_tuningtypes PRIMARY KEY (type)
  26. );
  27.